home *** CD-ROM | disk | FTP | other *** search
/ Commodore Free 15 / Commodore_Free_Issue_15_2008_Commodore_Computer_Club.d64 / t.64 beginners 2 < prev    next >
Text File  |  2023-02-26  |  14KB  |  499 lines

  1. u
  2. Beginners guide to the 64 Part 2
  3. (Part 1 is in Issue 14)
  4.  
  5. By now you should have a working C64
  6. with the following on screen & ready
  7. for user input
  8.  
  9.     **** COMMODORE 64 BASIC V2 ****
  10.  
  11.  64K RAM SYSTEM  38911 BASIC BYTES FREE
  12.  
  13. READY.
  14.  
  15. What we really need is to LOAD an
  16. application & RUN it, maybe a game &
  17. use our joysticks to ensure the machine
  18. is fully working. With the machine
  19. facing you on the right-hand side near
  20. the power you will notice 2 joystick
  21. ports, I suggest you purchase 2
  22. joysticks these are cheap & easily
  23. available on eBay look for C64
  24. compatible or Atari D style joystick.
  25.  
  26. CARTRIDGE
  27. The easiest option is to LOAD a game
  28. from a cartridge, all you need to do is
  29. power of the machine insert the
  30. cartridge with the cover picture facing
  31. up & then turn on the 64, the game or
  32. utility will LOAD instantly from the
  33. cartridge with virtually no waiting
  34. time. Now if the game needs a joystick
  35. in port 1 or 2 you will already have
  36. them set up & wont have to power OFF &
  37. change ports, also you can use the 64
  38. for 2 player games.
  39.  
  40. ATTACHED DEVICES
  41. Every device connected to the C64 has a
  42. default number:
  43. Disk drive = 8
  44. Tape drive = 1
  45. Printer = 4
  46.  
  47. These are the main ones you will use
  48. with a basic setup, so to access the
  49. device we use its number.
  50.  
  51. TAPE
  52. To load a game or application from tape
  53. you need to Power OFF the C64 connect
  54. the tape drive, the connector will only
  55. fit one way then turn on the C64, the
  56. tape gets its power from the C64 so you
  57. dont need any other connectors or
  58. power. If you know the name of the
  59. application you can type:
  60. LOAD"application name" & press RETURN
  61. or press RUNSTOP/RESTORE this will LOAD
  62. the first application from tape, You
  63. could also issue the command LOAD
  64. filename,1 & press RETURN this would
  65. load the filename of the device on 1
  66. which is the tape drive; cant say I
  67. have seen anyone use this.
  68.  
  69. DISK
  70. To load applications from disk, power
  71. OFF the 64. Connect the disk drive &
  72. then power ON the drive then power ON
  73. the 64 if you know the name of the
  74. application you can then type
  75. LOAD"application",8  or LOAD":*",8 this
  76. will LOAD the 1st application from
  77. disk. Then type RUN & press RETURN. Of
  78. course a disk needs formatting before
  79. use.
  80.  
  81. C64 BASIC DISK COMMANDS
  82. Format a new disk
  83.  OPEN1,8,15,N0:DISKNAME,ID:CLOSE 1
  84. Load a file        LOAD FILENAME,8
  85. Load 1st disk file LOAD *,8
  86. Load & run file  LOAD FILENAME,8,1
  87. Save a file        SAVE FILENAME,8
  88. Save & replace   SAVE @0:FILENAME,8
  89. Verify disk file   VERIFY FILENAME,8
  90. Directory listing  LOAD $,8
  91.                    LIST
  92.  
  93. COMMODORE FILE TYPES AND USES
  94. DEL                Deleted file
  95. PRG                Program file
  96. SEQ                Sequence file
  97.                    (usually text file)
  98. REL                Relative file
  99.                    (data file)
  100.  
  101. I have written a guide to help users at
  102.  
  103.  http://www.commodorefree.com/
  104.   magazine/information/Userguide.txt
  105.  
  106. When you delete a file from a disk the
  107. file is still viewable in the directory
  108. but listed as DEL or deleted, you may
  109. find it useful to type LOAD"$",8 then
  110. hit RETURN then issue the command LIST
  111. these 2 commands will LOAD a disk
  112. directory from device number 8 then
  113. LIST the files on screen; I would
  114. advise you to try various disks & look
  115. at the files.
  116.  
  117. PRINTERS
  118. Printers are issued by default the ID
  119. number 4. Most software will print to
  120. them without further configuration.
  121. Again have the 64 powered OFF Connect
  122. it to the Serial port or the Disk drive
  123. as the devices can be chained together
  124. like USB devices. Although C64 Dot-
  125. matrix printers & pen printers were
  126. considered state of the art when
  127. launched things have changed in the
  128. computing world & dot-matrix is no
  129. longer an acceptable output. Various
  130. additional boxes were made to allow
  131. a standard parallel printer to connect
  132. to the 64. Look for devices that are C=
  133. to Centronics or just look on eBay for
  134. C= printer interface you should find
  135. something like The Super Graphix card.
  136. These allow the conversion of ASCII
  137. from PETASCI C= used a variation of
  138. standard ASCII format all printers use
  139. called PETASCI these devices convert on
  140. the fly permitting the printing to non-
  141. C= printers, I have mine connected to a
  142. laser & inkjet printers & both machines
  143. output text fine from the 64. A tip is
  144. to use the CMD command; this permits
  145. changing the default output device so
  146. if you wanted a directory listing
  147. printed instead of being listed on the
  148. screen you could issue the commands:
  149.  
  150. OPEN 1,4     open device 4, printer
  151. CMD 1        output now goes to printer
  152. LIST      output will go to the printer
  153. CLOSE 1   cancels redirection command
  154.  
  155. Dont worry about the OPEN 1,4 command
  156. right now, just use it for redirecting
  157. text & ignore what it does, we will
  158. cover this  & other commands in later
  159. tutorials
  160.  
  161. Time marches on & machines especially 8
  162. bit machines get left behind or
  163. forgotten. Fortunately because of the
  164. 64s design & the ingenuity of
  165. developers & the love user have for the
  166. machine; various add-ons have been
  167. developed for the 64 over the years.
  168. Some of the most sought after products
  169. were produced by CMD. Its inventory was
  170. later purchased by Maurice Randel
  171. http://cmdrkey.com/
  172.  
  173. WARNING
  174. However a word of warning: before you
  175. order anything I would advise you that
  176. there is a long wait for products
  177. measured in Years rather than months,
  178. some customers have been waiting many
  179. years for products to arrive. Obviously
  180. this is a sideline for Maurice.  The
  181. link shows Maurice hard at work
  182. creating the products by himself.
  183. The website may say 3 months wait but
  184. you need to interpret this as 3 yrs
  185. minimum (if it ever shows up at all)
  186.  
  187.  http://www.geocities.com/
  188.   profdredd/maurice/cmdrkey.html
  189.  
  190. For a comprehensive look at the CMD
  191. Hardware products go to:
  192.  
  193.  http://www.cmdweb.de/
  194.  
  195. HARDWARE
  196. CMD produced many items of hardware
  197. including
  198.  
  199. SCPU
  200. A 20Mhz accelerator for the C64/128 the
  201. device can also accommodate up to 16mb
  202. of memory to my knowledge only the game
  203. Metaldust takes advantage of the extra
  204. processing power along with a handful
  205. of Demos, GEOS & Wheels operating
  206. systems, however other applications can
  207. benefit. For example complex 3D style
  208. games greatly benefit from the extra
  209. speed. The device is switchable from
  210. 20mhz back to 1mhz for compatibility &
  211. also includes an ON/OFF switch for
  212. extra compatibility also has Jiffy DOS
  213. included.
  214.  
  215. FD-2000
  216. A 1581 drive clone, however it has a
  217. bonus of being able to use hi-density
  218. disks, making this device very useful
  219. for the casual C64 user. Has JiffY DOS.
  220. Also can Swap device numbers with
  221. attached disk drives
  222.  
  223. HD DRIVES
  224. Can contain up to a 4gb hard disk
  225. includes Jiffydos & an external scsi
  226. connector can be set with up to 255
  227. partitions each can be 16mb in size.
  228. Features a device swap button. You can
  229. also create 1541 & 1581 partitions for
  230. compatibility.
  231.  
  232. RAMlink
  233. Can feature up to 16mb of memory. Is
  234. Super CPU compatible i.e. they can work
  235. together. Allows the user to set up
  236. partitions to have disks instantly
  237. accessed, also features a battery
  238. backup to save the partitions when
  239. powered OFF
  240.  
  241. JIFFYDOS
  242. Jiffydos is a floppy drive speed up
  243. system the chip needs fitting in the 64
  244. machine & also in your drives for the
  245. device to function to its potential,
  246. but as the RAMlink, SCPU & FD drive
  247. have Jiffydos installed, you could add
  248. a SCPU & a FD200 disk & be Jiffydos
  249. enabled, although other disk drives
  250. will need the chip fitted to take
  251. advantage, like the 1541 & 1581 drives.
  252. Jiffydos has a powerful set of control
  253. features to reduce typing & generally
  254. benefit the user
  255.  
  256. 1581
  257. The 1581 is a floppy disk drive & uses
  258. 3.5" single density disks. These are
  259. more redily available than the 1541
  260. 5.25" inch disks
  261.  
  262. IDE64
  263. http://www.ide64.org/
  264.  
  265. The IDE64 is a cartridge that allows
  266. standard PC IDE disk & CD ROM drives to
  267. be connected to your 64, although it
  268. seems everyone is sold out there is a
  269. new version out. For more details see:
  270.  http://www.ide64.org/ide64v4.html
  271. There is a patch for GEOS to work with
  272. the device, but to my knowledge Wheels
  273. doesnt support the system.
  274.  
  275. If you are a games fan you can copy
  276. most single file games on the device &
  277. LOAD them very quickly
  278.  
  279. MMC
  280. Similar to the IDE interface is the MMC
  281. card allowing your 64 to use standard
  282. Multimedia Sd cards up to 4gb.
  283.  
  284. CABLES
  285. Not much use until you need one, but
  286. you should look to invest in something
  287. like an X1541 Cable. This cable
  288. connects a PC to 1541 or 1581 drives &
  289. copy file to/from it. Also useful with
  290. the HDD64. If you own an old PC, you
  291. should look to investing in them.
  292.  
  293.  http://www.protovision-online.de/
  294.  http://www.vesalia.de/e_products.htm
  295.  
  296. OPERATING SYSTEMS
  297. Geos was the first graphic operating
  298. system I saw & requirements are low. A
  299. 1541 drive, C64/128 & joystick. You can
  300. download a limited version for free at:
  301.  
  302.  http://cbmfiles.com/geos/index.html
  303.  
  304. Wheels made various improvements on the
  305. Geos system but requirements are higher
  306. You need some form of memory expansion
  307. & ideally a hard drive
  308.  
  309. Various other systems have emerged like
  310. Contiki. Check here for the Contiki
  311. webserver:
  312.  
  313.  http://www.sics.se/contiki/platforms/
  314.   contiki-commodore-64-web-server.html
  315.  
  316. And the main OS:
  317.  
  318. http://www.sics.se/contiki/
  319.  
  320. The operating system was developed for
  321. various machines
  322.  
  323. SOFTWARE
  324. The HDD64 system turns an old PC or
  325. Laptop into a storage system allowing
  326. almost unlimited number of games &
  327. files to be added:
  328.  
  329.  http://www.64hdd.com/index_en.html
  330.  
  331. The software will work with registered
  332. versions of GEOS. The author also sells
  333. a speed up cartridge for users with
  334. HDD64 speeding up access to the files
  335. stored on PC, check the website for
  336. full details.
  337.  
  338. The website also sells various
  339. connectors & can transfer floppy disks
  340. to disk images.
  341.  
  342. Also of note to CMD Hard disk owners is
  343. Drive Ghost. Allowing users to backup
  344. their Hard Disk
  345.  
  346. DRIVEGHOST
  347. Here is information taken from the
  348. website on both HDD64 & Ghostdrive (as
  349. I promised Nick many times I would
  350. promote his software. Sorry its taken
  351. so long Nick) DRIVEGHOST is the only
  352. disk imaging software for CMD drives.
  353.  
  354. Overview
  355. DRIVEGHOST is a tool for "imaging" or
  356. "ghosting" the contents & structure of
  357. CMD drives. Drive ghosting is far more
  358. than a backup - it is a complete track
  359. & sector accurate method of copying
  360. data & ensuring that systems, not just
  361. files, can be restored at a later date.
  362. Programs, databases, GEOS, Wheels,
  363. anything & everything is captured!
  364. DRIVEGHOST images the contents &
  365. structure of your CMD HD, FD or RAMLINK
  366. to special files on a PC configured to
  367. run 64HDD. These image files can be
  368. kept on the PC or burnt to CDROM for a
  369. more permanent backup. DRIVEGHOST
  370. offers the flexibility of a complete
  371. backup/restore, user selected
  372. partitions, or the ability to import
  373. individual partitions to new drives or
  374. locations. It even lets you import D64
  375. files downloaded from the internet or
  376. from archives onto you CMD drive.
  377.  
  378. Features
  379. Complete backup solution for CMD drive
  380. users - HD, FD or RAMLINK. Uses imaging
  381. so as to capture all disk data - not
  382.  just the files
  383. Simple, intuitive point & click user
  384.  interface
  385. Runs unsupervised once started
  386. Works with freeware & Professional
  387.  versions of 64HDD using the popular
  388.  X1541 cable, or use it in combination
  389.  with IDE64
  390. Image files stored in PC format & can
  391.  be transferred to CDROM
  392. Ideal for:
  393. Backups
  394. Restoration
  395. Drive mechanism upgrades
  396. Data exchange
  397. Installing D64 files
  398. Shuffling partitions around & more...
  399.  
  400. Version 1.06 includes:
  401. Standard serial mode
  402. Fast-Serial restore mode
  403. PwrLoad cable support for fastest
  404.  backup/restore
  405. IDE64 file system mode to backup/
  406.  restore your CMD system
  407.  
  408. Introduction
  409. DRIVEGHOST is a unique backup tool
  410. available to the C64 user. Is powerful,
  411. yet easy to use. A graphical user
  412. interface allows easy selection of
  413. 64HDD & CMD drives, tagging of
  414. partitions to backup or restore, &
  415. navigation of your 64HDD archives.
  416. DRIVEGHOST will work with 64HDD core
  417. version v0.7b5 (or better) - freeware
  418. or Professional versions. 64HDD is a
  419. MSDOS PC based emulation program that
  420. allows 8-bit C64 computers to access
  421. the power of PC drives via the popular
  422. X1541 compatible cable. To find out
  423. more about 64HDD, refer to the separate
  424. user manual or the website. A copy of
  425. the current freeware version of 64HDD
  426. is included with your distribution of
  427. DRIVEGHOST.
  428.  
  429. Of course there is no need for 64HDD if
  430. you use DRIVEGHOST with your IDE64.
  431.  
  432. 64HDD Details
  433. 64HDD is a low-cost alternative to
  434. purchasing a Hard Drive for C64/128,
  435. Plus4/C16 or VIC20). 64HDD works with
  436. "images" of real C64 disks & tapes.
  437. These images are created by transfer-
  438. ring the data from a real disk/tape to
  439. a standard file format. Typical disk
  440. images are known as D64 files. Typical
  441. tape images are known as T64 files.
  442. There are many programs available that
  443. will let you transfer your data, & many
  444. websites that host archived D64 files.
  445.  
  446. The 64HDD software lets you connect
  447. your C64 computer to the LPT port of a
  448. PC using a standard X1541 or XE1541
  449. cable. For faster connection a special
  450. PwrLoader parallel cable can be used to
  451. speed things up 30-50 times.
  452.  
  453. Once configured, your 64 can have
  454. access your data which is safely stored
  455. & backed-up on the PC without having to
  456. fiddle about with dozens of floppies &
  457. old floppy disk drives.
  458.  
  459. In addition to using your PC's hard
  460. disk, you can access its CDROMs, USB
  461. drive, Real-Time-Clock, etc. The PC
  462. system can be any standard 386/486/
  463. Pentium etc. 64HDD runs under MSDOS (or
  464. a DOS-Box on some Win9x systems) but
  465. may not run under Windows 2000, NT or
  466. XP unless they have an alternate DOS
  467. boot configured or a Direct-IO driver.
  468. If you are stuck using a non-DOS system
  469. such as Win2k/XP/NT or Linux, 64HDD is
  470. also avaible on bootable CD-ROM.
  471.  
  472. 64HDD supports D64, D71, D81, T64, LNX
  473. images & the Native MSDOS file system.
  474. MSDOS mode even supports C64 16-char
  475. filenames in Win95 LongFileName format
  476. if the LFNFILES plug-in (v1.55 upgrade)
  477. (125kb) has been installed. You can
  478. even command the PC's 3.5" floppy drive
  479. to read/write 1581 disks using Womo's
  480. 1581COPY.
  481.  
  482. The full freeware download includes
  483. utilities & test software, as well as
  484. 64Xplor (a cross-platform file Explorer
  485. for C64/128/16/Plus4/VIC20 machines &
  486. works with real & 64HDD drives).
  487.  
  488. GEOS64 is supported via a custom kernal
  489. disk driver. Utilities are included in
  490. the driver download to provide time &
  491. date support as well as a disk
  492. ShortCut tool for jumping between D64's
  493. containing your GEOS collection.
  494.  
  495. Not forgetting the thousands of other
  496. hardware & software that is available
  497. for various commodore machines, check
  498. other issues so you dont miss out.
  499.